home *** CD-ROM | disk | FTP | other *** search
/ Trading on the Edge / Trading On The Edge - CD-ROM Toolkit (Wayzata Technology)(2031)(1994).bin / pc / pc_files / mktdata / econdata / docutils / amiarc.exe / RUN.INC < prev    next >
Text File  |  1989-02-08  |  1KB  |  27 lines

  1. #define MAXLOAD 4000
  2. #define MAXVAR 1000
  3. #define MAXLAG 40
  4. #define MAXFIX 100
  5. #define NCMAX 5000
  6. /*
  7.     MAXLOAD - maximum number of variables and lagged values of variables
  8.     MAXVAR  - maximum number of variables 
  9.     MAXLAG  - maximum number of lags on any one variable.
  10.     NCMAX - maximum number of characters that can be used to store the 
  11.                 names in  an indx file
  12.     
  13.     names - workspace bank names stored here
  14.     indx  - key to reading workspace names stored here
  15.     ns_ws  - number of series on workspace file
  16.     nobs_ws number of observations per series to be written onto the
  17.             workspace file
  18.     jahrba - base year of workspace file
  19. */
  20.     int cumul[MAXVAR+1],first,last,period,MaxIter;
  21.     FILE *fopen(), *fpiws,*fpws;
  22.     float date1,date2,fixvalue[MAXFIX],prdate1,prdate2,date,_x[2],_y[2];
  23.     double atof();
  24.     int ns_model,fix_count,iter_count,whichfix[MAXVAR],fixpos[MAXFIX];
  25.     char debug,fixtype[MAXFIX],lag[MAXVAR],s2sls,d_flag[2];
  26.     char *gstrcpy(),*strcat();
  27.